Thickener block
- WAS flow from settler block
- function script in Matlab: thickener_bsm2
- function parameters: THICKENPAR
- The percentage of suspended solids in the underflow of the thickener (thickener_perc) = 7%
- The percentage of suspended solids removed (TSS_removal_perc) = 98%
- X_I2TSS = 0.75
- X_S2TSS = 0.75
- X_BH2TSS = 0.75
- X_BA2TSS= 0.75
- X_P2TSS = 0.75
- Calculated parameters:
- TSSin = X{i}2TSS[i]*u[i] where u[i] is the particulate input i (X_I, X_S, X_BH, X_BA, X_P)
- thickening_factor = thickener_perc * 10000/TSS_in
- Underflow factor?(Qu_factor) = TSS_removal_perc/(100*thickening_factor)
- thinning_factor = (1.0 - TSS_removal_perc/100)/(1-Qu_factor)
Output
- Overflow
- if thickening_factor > 1
- Soluble and temperature: output = input
- Particulate: output = input*thinning_factor
- TSS: TSS_in*thinning_factor
- Flow: overflow = input*(1-Qu_factor)
- if thickening_factor <= 1
- The influent is too high on solids to thicken further. All the influent leaves with the underflow
- output = 0
- Underflow
- if thickening_factor > 1
- Soluble and temperature: output = input
- Particulate: output = input*thickening_factor
- TSS: TSS_in*thickener_factor
- Flow: underflow = input*(Qu_factor)
- if thickening_factor <= 1
- The influent is too high on solids to thicken further. All the influent leaves with the underflow
- output = input for all except for TSS. TSS_ouput = TSS_in